home *** CD-ROM | disk | FTP | other *** search
- from JascApp import *
-
- def ScriptProperties():
- return {
- 'Author': '',
- 'Copyright': '',
- 'Description': '',
- 'Host': 'Paint Shop Pro',
- 'Host Version': '8.00'
- }
-
- def Preset_Sunburst():
- return {
- 'CircleBrightness': 0,
- 'Color': (255,255,255),
- 'HorizontalOffset': 50,
- 'LightBrightness': 100,
- 'RayBrightness': 100,
- 'RayDensity': 100,
- 'VerticalOffset': 50
- }
-
- def Do(Environment):
- App.Do( Environment, 'Sunburst', Preset_Sunburst())
-
-